-
Notifications
You must be signed in to change notification settings - Fork 1
Console.WriteLine ve Console.Write fonksiyonlari #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
… ve ozel istenilen renkte yazi yazilabilecek olan fonksiyonlar eklendi
… ve ozel istenilen renkte yazi yazilabilecek olan fonksiyonlar eklendi
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clear all files except .cs and .csproj.
/// <summary> | ||
/// Istenilen renge gore Console'de yazdirilmak istenilen yazinin yazdirilip alt satira gecmesini saglayan fonksiyon | ||
/// </summary> | ||
/// <param name="value">Console'de yazilacak olan icerik</param> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Translate all descriptions to English.
/// Hata mesajlari icin Console'de Red olarak yazi yazdirir | ||
/// </summary> | ||
/// <param name="value">Console'de yazilacak olan icerik</param> | ||
public static void WriteLineError(string value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename function as "Error"
/// Basari mesajlari icin Console'de Green olarak yazi yazdirir | ||
/// </summary> | ||
/// <param name="value">Console'de yazilacak olan icerik</param> | ||
public static void WriteLineSuccess(string value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename function as "Success"
/// Uyari mesajlari icin Console'de Yellow olarak yazi yazdirir | ||
/// </summary> | ||
/// <param name="value">Console'de yazilacak olan icerik</param> | ||
public static void WriteLineWarning(string value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename function as "Warning"
/// Bilgilendirme mesajlari icin Console'de Cyan olarak yazi yazdirir | ||
/// </summary> | ||
/// <param name="value">Console'de yazilacak olan icerik</param> | ||
public static void WriteLineInfo(string value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename function as "Info"
Tek bir command icin help komutunun calistirilmasi
Console.Write ve Console.WriteLine fonksiyonlari icin Error, Success, Warning ve Info fonksiyonlari yazildi